home *** CD-ROM | disk | FTP | other *** search
/ Sunday Savers: Sharing Fun! I Know My Savior Lives / Sunday Savers: Sharing Fun! I Know My Savior Lives.iso / mac / Xtras / Buddy API 1.6 / Buddy API Docs.swf / texts / 1314.txt < prev    next >
Encoding:
Text File  |  2004-08-31  |  2.7 KB  |  115 lines

  1. 69
  2. --- RECORDSEPARATOR ---
  3.  
  4. --- RECORDSEPARATOR ---
  5. HideTaskBar 
  6. --- RECORDSEPARATOR ---
  7. Platform:
  8. --- RECORDSEPARATOR ---
  9.  
  10. --- RECORDSEPARATOR ---
  11. Windows and Macintosh
  12. --- RECORDSEPARATOR ---
  13.  
  14. --- RECORDSEPARATOR ---
  15. Description:
  16. --- RECORDSEPARATOR ---
  17.  
  18. --- RECORDSEPARATOR ---
  19. baHideTaskBar shows/hides the task bar/dock.
  20. --- RECORDSEPARATOR ---
  21.  
  22. --- RECORDSEPARATOR ---
  23. Usage:
  24. --- RECORDSEPARATOR ---
  25.  
  26. --- RECORDSEPARATOR ---
  27. Result = baHideTaskBar( Hide )
  28. --- RECORDSEPARATOR ---
  29.  
  30. --- RECORDSEPARATOR ---
  31. Arguments:
  32. --- RECORDSEPARATOR ---
  33.  
  34. --- RECORDSEPARATOR ---
  35. Integer. 
  36. --- RECORDSEPARATOR ---
  37. If Hide is true, the task bar is hidden, else it will be visible.
  38. --- RECORDSEPARATOR ---
  39.  
  40. --- RECORDSEPARATOR ---
  41. Returns:
  42. --- RECORDSEPARATOR ---
  43.  
  44. --- RECORDSEPARATOR ---
  45. Integer. 
  46. --- RECORDSEPARATOR ---
  47. Returns the previous state of the task bar - 1 if it is visible, 0 if it isn't.
  48. --- RECORDSEPARATOR ---
  49.  
  50. --- RECORDSEPARATOR ---
  51. Examples:
  52. --- RECORDSEPARATOR ---
  53.  
  54. --- RECORDSEPARATOR ---
  55. Director: 
  56. --- RECORDSEPARATOR ---
  57. set showing = baHideTaskBar( true ) 
  58. --- RECORDSEPARATOR ---
  59. Authorware: 
  60. --- RECORDSEPARATOR ---
  61. showing := baHideTaskBar( true )
  62. --- RECORDSEPARATOR ---
  63.  
  64. --- RECORDSEPARATOR ---
  65. Notes:
  66. --- RECORDSEPARATOR ---
  67.  
  68. --- RECORDSEPARATOR ---
  69. On
  70. --- RECORDSEPARATOR ---
  71.  Windows
  72. --- RECORDSEPARATOR ---
  73. , this function will not change the user's task bar settings - the 'Always 
  74. --- RECORDSEPARATOR ---
  75. on top' and 'Auto hide' settings. 
  76. --- RECORDSEPARATOR ---
  77. On
  78. --- RECORDSEPARATOR ---
  79.  Mac
  80. --- RECORDSEPARATOR ---
  81. , this function is only present in the OSX version. This function will only 
  82. --- RECORDSEPARATOR ---
  83. work under OSX 10.2 and later. There are differences between the way the 
  84. --- RECORDSEPARATOR ---
  85. function works under 10.2 and 10.3, due to Apple bugs and differences in 
  86. --- RECORDSEPARATOR ---
  87. implementation between the two operating systems. 
  88. --- RECORDSEPARATOR ---
  89. baHideTaskBar( 0 ) 
  90. --- RECORDSEPARATOR ---
  91. shows the dock and menubar 
  92. --- RECORDSEPARATOR ---
  93. baHideTaskBar( 1 ) 
  94. --- RECORDSEPARATOR ---
  95. hides only the dock on 10.3; hides the dock and menu bar on 10.2 
  96. --- RECORDSEPARATOR ---
  97. baHideTaskBar( 2 ) 
  98. --- RECORDSEPARATOR ---
  99. hides the dock and menu bar on both 
  100. --- RECORDSEPARATOR ---
  101. baHideTaskBar( 3 ) 
  102. --- RECORDSEPARATOR ---
  103. sets the dock to autohide on 10.3; hides the dock and menu bar on 10.2 
  104. --- RECORDSEPARATOR ---
  105. The dock and menu bar will be hidden only when the projector is the active 
  106. --- RECORDSEPARATOR ---
  107. application. On 10.2, when the projector is activated again, the dock will be hidden 
  108. --- RECORDSEPARATOR ---
  109. again; under 10.3 it won't be. 
  110. --- RECORDSEPARATOR ---
  111. The function return on
  112. --- RECORDSEPARATOR ---
  113.  Mac
  114. --- RECORDSEPARATOR ---
  115.  will always be 0.